00001 #include "graph.h" 00002 00003 #ifdef _MSC_VER 00004 #pragma warning(disable: 4661) 00005 #endif 00006 00007 // Instantiations: <captype, tcaptype, flowtype> 00008 // IMPORTANT: 00009 // flowtype should be 'larger' than tcaptype 00010 // tcaptype should be 'larger' than captype 00011 00012 template class Graph<int,int,int>; 00013 template class Graph<int,int,long long>; 00014 template class Graph<short,int,int>; 00015 template class Graph<float,float,float>; 00016 template class Graph<double,double,double>; 00017 template class Graph<long long,long long,long long>; 00018